home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 2 / MacMania 2.toast / Demo's / Music⁄Sounds / BeepSay 1.0.1 / Sayit.r < prev    next >
Encoding:
Text File  |  1993-06-09  |  1.8 KB  |  82 lines  |  [TEXT/MPS ]

  1. /******************************************************************************
  2. **
  3. **  Folder Name:    BS
  4. **     File Name:    Sayit.r
  5. **
  6. **   Copyright:    © 1993 by Siren Enterprises, all rights reserved.
  7. **
  8. **   Description:    Sayit Rez file
  9. **
  10. *******************************************************************************
  11. **                       A U T H O R   I D E N T I T Y
  12. *******************************************************************************
  13. **
  14. **    Initials    Name
  15. **    --------    -----------------------------------------------
  16. **    KW            Ken Wieschhoff
  17. **
  18. *******************************************************************************
  19. **                      R E V I S I O N   H I S T O R Y
  20. *******************************************************************************
  21. **
  22. **      Date        Time    Author    Description
  23. **    --------    -----    ------    ---------------------------------------------
  24. **    06/09/93    21:39    KW        Original
  25. **
  26. ******************************************************************************/
  27. /*
  28.     Sayit [-h] | <Phrase>
  29.          -h                     # display help
  30.          <Phrase>                # Phrase to speak
  31. */
  32.  
  33. #include    "Cmdo.r"
  34.  
  35.  
  36. resource 'cmdo' (128) {
  37.     {
  38.         245,            /* Height of dialog */
  39.         "Speaks a phrase if Lil´ BeepSay is installed.",
  40.         {
  41.             notDependent {}, RadioButtons {
  42.                 {
  43.                     {25, 250, 40, 410},
  44.                     "Phrase",
  45.                     "",
  46.                     Set,
  47.                     "Add the phrase to speak.",
  48.                                     
  49.                     {40, 250, 55, 340},
  50.                     "Help",
  51.                     "-h",
  52.                     NotSet,
  53.                     "Display usage.",
  54.  
  55.                 }
  56.             },
  57.             notDependent {}, TextBox {
  58.                 gray,
  59.                 {17, 240, 75, 450},
  60.                 "Sayit"
  61.             },
  62.             notDependent {}, Redirection {
  63.                 StandardInput,
  64.                 {85, 30}
  65.             },
  66.             notDependent {}, Redirection {
  67.                 StandardOutput,
  68.                 {85, 180}
  69.             },
  70.             notDependent {}, Redirection {
  71.                 DiagnosticOutput,
  72.                 {85, 330}
  73.             },
  74.             notDependent {}, TextBox {
  75.                 gray,
  76.                 {80, 25, 125, 450},
  77.                 "Redirection"
  78.             },
  79.         }
  80.     }
  81. };
  82.